close — Close a File


\begin{rail}
Close : 'close' '(' String ')' ;
\end{rail}
close takes a single string argument, and tries to close the file named by the string. It returns 1, or true, if the file was closed. It returns 0, or false, if the file could not be closed. You have to close a file between writing to it, and reading from it.

Subsections